home *** CD-ROM | disk | FTP | other *** search
/ Clickx 96 / Clickx 96.iso / software / tools / tool / xbmc-10.1.exe / system / shaders / yuv2rgb_basic_rect.arb < prev    next >
Encoding:
ARB Fragment shader  |  2011-03-08  |  1.2 KB  |  37 lines

  1. !!ARBfp1.0
  2.  
  3. #
  4. #      Copyright (C) 2010 Team XBMC
  5. #      http://www.xbmc.org
  6. #
  7. #  This Program is free software; you can redistribute it and/or modify
  8. #  it under the terms of the GNU General Public License as published by
  9. #  the Free Software Foundation; either version 2, or (at your option)
  10. #  any later version.
  11. #
  12. #  This Program is distributed in the hope that it will be useful,
  13. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. #  GNU General Public License for more details.
  16. #
  17. #  You should have received a copy of the GNU General Public License
  18. #  along with XBMC; see the file COPYING.  If not, write to
  19. #  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  20. #  http://www.gnu.org/copyleft/gpl.html
  21. #
  22. #
  23.  
  24. PARAM yuvmat[4] = { program.local[0..3] };
  25. TEMP R0;
  26. TEMP R1;
  27. TEX R0.x, fragment.texcoord[0], texture[0], RECT;
  28. TEX R0.y, fragment.texcoord[1], texture[1], RECT;
  29. TEX R0.w, fragment.texcoord[2], texture[2], RECT;
  30. MOV R0.z, R0.w;
  31. DPH R1.r, R0, yuvmat[0];
  32. DPH R1.g, R0, yuvmat[1];
  33. DPH R1.b, R0, yuvmat[2];
  34. MOV R1.a, fragment.color.a;
  35. MOV result.color, R1;
  36. END
  37.